From a1b4b084b13ee786951f9878e2c5c6a89af8e5d3 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sat, 19 Jun 1993 21:06:18 +0000 Subject: [PATCH] * minibuf.c (Fread_minibuffer): Add missing semicolon after CHECK_STRING macro. --- src/minibuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minibuf.c b/src/minibuf.c index f7043d8afa6..b57cf4c73f4 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -415,7 +415,7 @@ is a string to insert in the minibuffer before reading.") { CHECK_STRING (prompt, 0); if (!NILP (initial_contents)) - CHECK_STRING (initial_contents, 1) + CHECK_STRING (initial_contents, 1); return read_minibuf (Vminibuffer_local_map, initial_contents, prompt, Qnil, 1, Qminibuffer_history, make_number (0)); } -- 2.30.2